home *** CD-ROM | disk | FTP | other *** search
- program qrdemo;
-
- uses
- Forms,
- Main in 'MAIN.PAS' {TQuickReportDemo},
- Mdrep in 'MDREP.PAS' {MDForm},
- Simprep in 'SIMPREP.PAS' {SimpForm},
- Biorep in 'BIOREP.PAS' {Bioform},
- Demopre in 'DEMOPRE.PAS' {PrevForm},
- Labelrep in 'Labelrep.pas' {LabelForm},
- datasets in 'datasets.pas' {CustomerData},
- textlist in 'textlist.pas' {TextRep};
-
- {$R *.RES}
- begin
- Application.CreateForm(TTQuickReportDemo, TQuickReportDemo);
- Application.CreateForm(TSimpForm, SimpForm);
- Application.CreateForm(TMDForm, MDForm);
- Application.CreateForm(TBioform, Bioform);
- Application.CreateForm(TLabelForm, LabelForm);
- Application.CreateForm(TPrevForm, PrevForm);
- Application.CreateForm(TCustomerData, CustomerData);
- Application.CreateForm(TTextRep, TextRep);
- Application.Run;
- end.
-